Golang : Get a list of crosses(instruments) available to trade from Oanda account
Below is a simple program to get a list of available crosses for trading from Oanda.com. My original purpose of writing this code is for developing my own trading bot and from what I discovered is that ..... not all crosses are available to trade in Oanda. Therefore, it is good to limit the trading bot to the crosses available.
Here you go!
package main
import (
"fmt"
"github.com/awoldes/goanda"
)
func main() {
oandaAccountID := ""
oandaAPIKey := ""
fmt.Println("Get list of tradeable instruments for this account id : " + oandaAccountID)
UsingLIVEAccount := false // set false to use https://api-fxpractice.oanda.com
oanda := goanda.NewConnection(oandaAccountID, oandaAPIKey, UsingLIVEAccount)
// list out all the available instruments under this account
crossesAvailableToTrade := oanda.GetAccountInstruments(oandaAccountID)
for k, v := range crossesAvailableToTrade.Instruments {
fmt.Println(k, v.Name)
}
// list only CURRENCY
fmt.Println("================================================================")
for _, v := range crossesAvailableToTrade.Instruments {
// only print those with type CURRENCY
if v.Type == "CURRENCY" {
//fmt.Println(k, v.Name)
fmt.Println(v.Name, ",")
}
}
}
See also : Golang : Oanda bot with Telegram and RSI example
By Adam Ng(黃武俊)
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+15.6k Golang : How to convert(cast) IP address to string?
+18.6k Golang : Aligning strings to right, left and center with fill example
+12.7k Golang : Get absolute path to binary for os.Exec function with exec.LookPath
+21.7k Golang : GORM create record or insert new record into database example
+29.1k Golang : Get first few and last few characters from string
+7.1k Web : How to see your website from different countries?
+8.3k Golang : Emulate NumPy way of creating matrix example
+16.5k Golang : Send email and SMTP configuration example
+17.1k Golang : Covert map/slice/array to JSON or XML format
+7.1k Golang : Gargish-English language translator
+28.2k Golang : Connect to database (MySQL/MariaDB) server
+9.9k Golang : Sort and reverse sort a slice of integers